home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr02 / busarc.zip / DEMO.BAT < prev    next >
DOS Batch File  |  1993-07-04  |  409b  |  20 lines

  1. echo off
  2. rdemo2 demonov1
  3. ask "Do you want to print a sample plan (Y/N): "
  4. if errorlevel == 1 goto PRT
  5. goto FINISH
  6. :PRT
  7. ask "Will you print on a laser printer? (Y/N): "
  8. if errorlevel == 1 goto LASER
  9. ask "Does your printer support graphics? (Y/N): "
  10. if errorlevel == 1 goto GRPH
  11. goto NOGRPH
  12. :GRPH
  13. copy graph.rpt prn
  14. goto FINISH
  15. :NOGRPH
  16. copy nongraph.rpt prn
  17. :LASER
  18. copy laser.rpt prn
  19. :FINISH
  20.